home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / CBGRX103.ZIP / contrib / libgrx / test / pgtest.c < prev    next >
Text File  |  1993-12-06  |  4KB  |  145 lines

  1. /**
  2.  ** PGTEST.C
  3.  **
  4.  **  Copyright (C) 1992, Csaba Biegl
  5.  **    820 Stirrup Dr, Nashville, TN, 37221
  6.  **    csaba@vuse.vanderbilt.edu
  7.  **
  8.  **  This file is distributed under the terms listed in the document
  9.  **  "copying.cb", available from the author at the address above.
  10.  **  A copy of "copying.cb" should accompany this file; if not, a copy
  11.  **  should be available from where this file was obtained.  This file
  12.  **  may not be distributed without a verbatim copy of "copying.cb".
  13.  **  You should also have received a copy of the GNU General Public
  14.  **  License along with this program (it is in the file "copying");
  15.  **  if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  16.  **  Cambridge, MA 02139, USA.
  17.  **
  18.  **  This program is distributed in the hope that it will be useful,
  19.  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  **  GNU General Public License for more details.
  22.  **/
  23.  
  24.  
  25. #include <string.h>
  26.  
  27. #include <grx.h>
  28. #include <mousex.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31.  
  32. int    Argc;
  33. char **Argv;
  34.  
  35. #ifdef __TURBOC__
  36. extern long clock(void);
  37. #endif
  38.  
  39. #ifdef __GNUC__
  40. extern long rawclock(void);
  41. #define clock() rawclock()
  42. #endif
  43.  
  44.  
  45. void pgtest(void)
  46. {
  47.     long start,end;
  48.     int  ii,ypos;
  49.     char buff[2048];
  50.  
  51.     while(kbhit()) getkey();
  52.     sprintf(buff,
  53.         "GRAPHICS MODE: width = %d, height = %d, colors = %d",
  54.         GrSizeX(),
  55.         GrSizeY(),
  56.         GrNumColors()
  57.     );
  58.     GrClearContext(0);
  59.     GrTextXY(10,(GrSizeY() - 16) / 2,buff,GrWhite(),GrNOCOLOR);
  60.     getkey();
  61.  
  62.     GrClearContext(0);
  63.     start = clock();
  64.     for(ii = 0; ii < 200; ii++) {
  65.         GrClearContext(ii & 255);
  66.     }
  67.     end = clock();
  68.     sprintf(buff,
  69.         "Time to clear full screen 200 times: %.2f seconds",
  70.         (double)(end - start) * 0.055
  71.     );
  72.     GrClearContext(0);
  73.     GrTextXY(10,(GrSizeY() - 16) / 2,buff,GrWhite(),GrNOCOLOR);
  74.     getkey();
  75.  
  76.     GrClearContext(0);
  77.     start = clock();
  78.     for(ii = 0; ii < 2000; ii++) {
  79.         GrTextXY(0,0,
  80.         "QUICK BROWN FOX JUMPS OVER THE LAZY DOG",
  81.         ii % 3,
  82.         ii % 23
  83.         );
  84.     }
  85.     end = clock();
  86.     sprintf(buff,
  87.         "Time to draw text 2000 times in same page: %.2f seconds",
  88.         (double)(end - start) * 0.055
  89.     );
  90.     GrClearContext(0);
  91.     GrTextXY(10,(GrSizeY() - 16) / 2,buff,GrWhite(),GrNOCOLOR);
  92.     getkey();
  93.  
  94.     GrClearContext(0);
  95.     ypos  = (GrScreenY()*GrScreenY() > 256*1024) ?
  96.             (256*1024 / GrScreenX()) - 8:
  97.             (64*1024  / GrScreenX()) - 8;
  98.     start = clock();
  99.     for(ii = 0; ii < 2000; ii++) {
  100.         GrTextXY(0,ypos,
  101.         "QUICK BROWN FOX JUMPS OVER THE LAZY DOG",
  102.         ii % 3,
  103.         ii % 23
  104.         );
  105.     }
  106.     end = clock();
  107.     sprintf(buff,
  108.         "Time to draw text 2000 times crossing pages: %.2f seconds",
  109.         (double)(end - start) * 0.055
  110.     );
  111.     GrClearContext(0);
  112.     GrTextXY(10,(GrSizeY() - 16) / 2,buff,GrWhite(),GrNOCOLOR);
  113.     getkey();
  114. }
  115.  
  116. void main(int argc,char **argv)
  117. {
  118.     int x = 0;
  119.     int y = 0;
  120.     int c = 0;
  121.  
  122.     Argc = argc - 1;
  123.     Argv = argv + 1;
  124.     if((Argc >= 2) &&
  125.        (sscanf(Argv[0],"%d",&x) == 1) && (x >= 320) &&
  126.        (sscanf(Argv[1],"%d",&y) == 1) && (y >= 200)) {
  127.         Argc -= 2;
  128.         Argv += 2;
  129.         if((Argc > 0) && (sscanf(Argv[0],"%d",&c) == 1) && (c >= 2)) {
  130.         Argc--;
  131.         Argv++;
  132.         }
  133.     }
  134.     if(c >= 2)
  135.         GrSetMode(GR_width_height_color_graphics,x,y,c);
  136.     else if((x >= 320) && (y >= 200))
  137.         GrSetMode(GR_width_height_graphics,x,y);
  138.     else GrSetMode(GR_default_graphics);
  139.     pgtest();
  140.     GrSetMode(GR_default_text);
  141.     exit(0);
  142. }
  143.  
  144.  
  145.